Skip to main content
Version: 1.0.2

Update Account Category

'UpdateAccountCategory' API enables to change the category (setting product) of an account

Account Category (Product) - Global level setting is done and a category (product) name is given to the setting. This category can be mapped with any required account.

Bank or financial institution can change the category (setting product) that is mapped with an account. On providing the request with the account number and the account category to be updated, the account category is changed with the generation of success message.

Method: POST

{{URL}}/jsonrpc

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParameterDescription

method

Mandatory

String

API method that is being called to update account category through account service

Constant value: "AccountService.UpdateAccountCategory"

id

Mandatory

String

Unique ID of API request

Sample value: "1"

params

Mandatory

Object

api

Mandatory

Object

signature

Mandatory

String

Signature for request validation

Sample value: "signature"

keyId

Mandatory

String

API key used for request authentication

Sample value: "ApplicationKeyId"

credential

Mandatory

String

API credential provided by NetXD

Sample value: "Credential"

payload

Mandatory

Object

AccountNumber

Mandatory

String

Account number of the account that requires an update/change of category

Sample value: 200656417727934

AccountCategory

Mandatory

String

Required category that to be updated for the account

Sample value: DEFAULT


curl --location --globoff '{{URL}}/jsonrpc' \
--header 'Content-Type: application/json' \
--data '{"method":"AccountService.UpdateAccountCategory","id":"1","params":{"api":{"signature":"{{signature}}","keyId":"{{ApplicationKeyId}}","credential":"{{Credential}}"},"payload":{"AccountNumber":"200656417727934","AccountCategory":"DEFAULT"}}}'

Body


{
"method": "AccountService.UpdateAccountCategory",
"id": "1",
"params": {
"api": {
"signature": "{{signature}}",
"keyId": "{{ApplicationKeyId}}",
"credential": "{{Credential}}"
},
"payload": {
"AccountNumber": "200656417727934",
"AccountCategory": "DEFAULT"
}
}
}

Response: 200

Response Parameters
ParameterDescription

id

String

Response ID echoed from the request ID

Sample value: "1"

result

Object

MessageString

Response message confirms that the account is updated successfully with the update/change of category

Sample value: "Account updated Successfully"


{
"id": "1",
"result": {
"Message": "Account updated Successfully"
}
}